home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / cfuncs.zip / WRITEAT.DOC < prev   
Text File  |  1991-02-22  |  1KB  |  18 lines

  1. /*---------------------Write AT-----------------------------*/
  2. /*                                                          */
  3. /* DESCRPTION: Writes a string to the console or screen     */
  4. /*              at the column and row in the foreground and */
  5. /*              background.                                 */
  6. /*                                                          */
  7. /* INPUT:                                                   */
  8. /*    X         - screen row       (1-25)                      */
  9. /*    Y      - screen column    (1-80)                      */
  10. /*    fore   - foreground color                             */
  11. /*    back   - background color                             */
  12. /*    outstr - string to printed on the screen              */
  13. /*                                                          */
  14. /* USES: dma_puts                                           */
  15. /*----------------------------------------------------------*/
  16.  
  17. WriteAt( int X, int Y, int fore, int back, char *outstr )
  18.